home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / scuba.swf / scripts / DefineSprite_303 / frame_5 / DoAction.as
Text File  |  2012-01-07  |  562b  |  30 lines

  1. vCounter = Number(vCounter + Number(_root.gDifficultyFactorFish));
  2. if(_root.gDifficultyFactorFish < 0.4)
  3. {
  4.    _root.gDifficultyFactorFish = Number(_root.gDifficultyFactorFish + Number(_root.gDifficultyIncr));
  5. }
  6. if(_root.gSkillLevel == "cadet")
  7. {
  8.    if(vCounter < 5)
  9.    {
  10.       gotoAndPlay(3);
  11.    }
  12.    else
  13.    {
  14.       vCounter = Number(0);
  15.       gotoAndPlay(6);
  16.    }
  17. }
  18. else if(_root.gSkillLevel == "commando")
  19. {
  20.    if(vCounter < 2)
  21.    {
  22.       gotoAndPlay(3);
  23.    }
  24.    else
  25.    {
  26.       vCounter = Number(0);
  27.       gotoAndPlay(6);
  28.    }
  29. }
  30.